--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 7b8fcbc68be98563863729d0b78ffaf57f552dc9
Parents : 09d8f64
Author : Sudo-Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-02-23T19:53:28-06:00
Remove pnpm cache from CI and test workflows
Changes
3 files changed, 9 insertions(+), 7 deletions(-)
Diff
diff --git a/.gitea/workflows/bench.yml b/.gitea/workflows/bench.yml
index 76f8bbbc..28869aa9 100644
--- a/.gitea/workflows/bench.yml
+++ b/.gitea/workflows/bench.yml
@@ -14,7 +14,9 @@ jobs:
uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
- cache: pnpm
+
+ - name: Install pnpm
+ run: corepack enable && corepack prepare pnpm@10.30.0 --activate
- name: Setup Python
uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml
index 0e83f3f8..89d3afe1 100644
--- a/.gitea/workflows/ci.yml
+++ b/.gitea/workflows/ci.yml
@@ -17,7 +17,6 @@ jobs:
uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
- cache: pnpm
- name: Install pnpm
run: corepack enable && corepack prepare pnpm@10.30.0 --activate
- name: Setup Python
@@ -33,7 +32,9 @@ jobs:
- name: Setup Python environment
run: task setup:be
- name: pip-audit
- run: poetry run pip install pip-audit && poetry run pip-audit
+ run: |
+ poetry run pip install --upgrade "pip>=26.0" pip-audit
+ poetry run pip-audit
- name: Install Node dependencies
run: task deps:fe
- name: pnpm audit
@@ -52,7 +53,6 @@ jobs:
uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
- cache: pnpm
- name: Install pnpm
run: corepack enable && corepack prepare pnpm@10.30.0 --activate
- name: Setup Task
@@ -102,7 +102,6 @@ jobs:
uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
- cache: pnpm
- name: Install pnpm
run: corepack enable && corepack prepare pnpm@10.30.0 --activate
- name: Setup Python
@@ -118,7 +117,9 @@ jobs:
- name: Install dependencies
run: task install
- name: pip-audit
- run: poetry run pip install pip-audit && poetry run pip-audit
+ run: |
+ poetry run pip install --upgrade "pip>=26.0" pip-audit
+ poetry run pip-audit
- name: pnpm audit
run: pnpm audit --audit-level=high
- name: Run language tests
diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml
index 0dfd79c7..a31f1b2d 100644
--- a/.gitea/workflows/tests.yml
+++ b/.gitea/workflows/tests.yml
@@ -18,7 +18,6 @@ jobs:
uses: https://git.quad4.io/actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
- cache: pnpm
- name: Install pnpm
run: corepack enable && corepack prepare pnpm@10.30.0 --activate
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────